home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / XMS.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  606b  |  25 lines

  1. /* +++Date last modified: 04-Nov-1996 */
  2.  
  3. /*
  4. ** XMS.H
  5. **
  6. ** Header file for Extended Memory routines in XMS.C.
  7. */
  8.  
  9. #ifndef _XMS_H
  10. #define _XMS_H
  11.  
  12. int  XMSinit(void);
  13. int  XMSversion(void);
  14. long XMScoreleft(void);
  15. int  XMSfree(unsigned int handle);
  16. long XMSmemcpy(unsigned int desthandle, long destoff,
  17.                  unsigned int srchandle, long srcoff, long n);
  18. int  DOStoXMSmove(unsigned int desthandle, long destoff,
  19.                  const char *src, int n);
  20. int  XMStoDOSmove(char *dest, unsigned int srchandle, long srcoff, int n);
  21.  
  22. unsigned int XMSalloc(long size);
  23.  
  24. #endif
  25.